home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (4th Edition)
/
The Business Master - 4th Edition.iso
/
files
/
windssor
/
bookwin
/
printman.bat
< prev
next >
Wrap
DOS Batch File
|
1993-03-15
|
575b
|
21 lines
@REM PRINTMAN.BAT; JLS 3/93
@echo off
if "%1"=="" goto info
ECHO Docs for Bookbild 1.0 for WP/Win 5.2 will now print...
ECHO ...
ECHO The files REGISTER.DOC, bookwin.DOC, and PRODUCTS.DOC will print...
ECHO VENDOR.DOC contains sysop and vendor information, and may
ECHO be printed by typing "type vendor.doc >lpt1" from the bookbild disk.
@ECHO ...
type register.doc >%1
type bookwin.doc >%1
type products.doc >%1
goto end
:info
ECHO Start PRINTMAN.BAT with a device name; for example...
ECHO PRINTMAN LPT1
ECHO or:
ECHO PRINTMAN PRN
ECHO ...
:end
PAUSE